home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / PowerPlant / AGA Classes 1.2 / AGADemo / AGADemo Sources / LPPobView.h < prev   
Encoding:
Text File  |  1995-08-23  |  1.5 KB  |  50 lines  |  [TEXT/MMCC]

  1. // ===========================================================================
  2. //        • LPPobView.h                © 1995, Éric Forget. All rights reserved.
  3. // ===========================================================================
  4. //
  5. //    ************************************************************************
  6. //    *                                                                      *
  7. //    *    Before using this code you should read the "License Agreement"     *
  8. //    *    document and agree with it.                                        *
  9. //    *                                                                      *
  10. //    ************************************************************************
  11. //
  12. //    Instruction and usage notes are in the LPPobView.cp file.
  13. //
  14. // ---------------------------------------------------------------------------
  15.  
  16.  
  17. #pragma once
  18.  
  19.  
  20.  
  21. // ---------------------------------------------------------------------------
  22. //        • Classe LPPobView
  23. // ---------------------------------------------------------------------------
  24.  
  25. class LPPobView : public LView {
  26.  
  27. public:
  28.  
  29.     enum { class_ID = 'PPvi' };
  30.     static LPPobView*    CreatePPobViewStream(LStream *inStream);
  31.  
  32.                         LPPobView();
  33.                         LPPobView(
  34.                                 const LPPobView &inOriginal);
  35.                         LPPobView(
  36.                                 const SPaneInfo &inPaneInfo,
  37.                                 const SViewInfo &inViewInfo,
  38.                                 const ResIDT    inViewID);
  39.                         LPPobView(
  40.                                 LStream            *inStream);
  41.                             
  42.     virtual                ~LPPobView();
  43.  
  44. protected:
  45.     ResIDT                mViewID;
  46.     
  47. private:
  48.     void                InitPPobView(ResIDT    inViewID);
  49. };
  50.